home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue3 / Games / xrick / !xrick / include / h / e_bomb < prev    next >
Text File  |  2004-06-24  |  796b  |  35 lines

  1. /*
  2.  * xrick/include/e_bomb.h
  3.  *
  4.  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
  5.  *
  6.  * The use and distribution terms for this software are contained in the file
  7.  * named README, which can be found in the root of this distribution. By
  8.  * using this software in any fashion, you are agreeing to be bound by the
  9.  * terms of this license.
  10.  *
  11.  * You must not remove this notice, or any other, from this software.
  12.  */
  13.  
  14. #ifndef _E_BOMB_H
  15. #define _E_BOMB_H
  16.  
  17. #include "system.h"
  18.  
  19. #define E_BOMB_NO 3
  20. #define E_BOMB_ENT ent_ents[E_BOMB_NO]
  21. #define E_BOMB_TICKER (0x2D)
  22.  
  23. extern U8 e_bomb_lethal;
  24. extern U8 e_bomb_ticker;
  25. extern U8 e_bomb_xc;
  26. extern U16 e_bomb_yc;
  27.  
  28. extern U8 e_bomb_hit(U8);
  29. extern void e_bomb_init(U16, U16);
  30. extern void e_bomb_action(U8);
  31.  
  32. #endif
  33.  
  34. /* eof */
  35.